home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / CHECKBOX.CPP < prev    next >
C/C++ Source or Header  |  1993-09-23  |  318b  |  22 lines

  1. // ------------- checkbox.cpp
  2.  
  3. #include "checkbox.h"
  4. #include "desktop.h"
  5.  
  6. CheckBox::CheckBox(const char *lbl, int lf, int tp, DFWindow *par) :
  7.                     Button(lbl, lf, tp, par)
  8. {
  9.     setchar = 'X';
  10.     (*text)[0] = '[';
  11.     (*text)[2] = ']';
  12.     windowtype = CheckBoxWindow;
  13. }
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.